[Docker] Docker Volume


  • docker volume share with host

    docker run --name website -v C:\Docker\website:/usr/share/nginx/html -d -p 3000:80 nginx

  • docker volume share between containers

    docker run --name website-copy --volumes-from website -d -p 8081:80 nginx

#docker






你可能感興趣的文章

Day 01 典型統計應用在社群媒體分析(Classical statistics applied to social data) part 1

Day 01 典型統計應用在社群媒體分析(Classical statistics applied to social data) part 1

ES6 解構賦值

ES6 解構賦值

【THM Walkthrough】Exploiting Active Directory (2)

【THM Walkthrough】Exploiting Active Directory (2)






留言討論